|
|
|
Download code
Note: Due to the
size or complexity of this submission, the author has
submitted it as a .zip file to shorten your download
time. After downloading it, you will need a program like
Winzip to
decompress it.
Virus note: All files are scanned
once-a-day by Planet Source Code for viruses, but no
prevention program can catch 100% of all
viruses. For your own safety, please re-scan
this file using a personal virus checker before using
it. Also, NEVER run .exe's that are not accompanied by
source code--whether from this site or any other
site.
If you don't have a virus scanner, you can
get one at many places on the net including: McAfee.com
|
Terms of
Agreement: By using this code, you
agree to the following terms... 1)
You may use this code in your own programs and may
compile it into an .exe/.dll/.ocx and distribute it in
binary format freely and with no
charge. 2) You MAY NOT redistribute
this code (for example to a web site) without written
permission from the original author. Failure to do so is
a violation of copyright laws. 3)
You may link to this code from another website, but ONLY
if it is not wrapped in a frame. 4) You will
abide by any additional copyright restrictions which the
author may have placed in the code or code's
description. |
Other 7 submission(s)
by this author
|
|
|
Report Bad Submission |
|
|
Your Vote! |
See
Voting Log |
|
Other User Comments
|
5/22/1999 2:21:00 AM: kim-hyunwoo Thank-you
|
7/16/1999 9:21:00 AM: Jon Didn't work for me... kept getting
"Address In Use" errors.
Q:
Is this
supposed to work over the net or only
on LANs? It appears (after glancing
over it) that you are parsing the IP
prefix and then looping through and
populating the last number to attract
the rest of the network IPs and then
connecting to them. This cannot work
over the net becasue of the (almost)
infinite IP addresses out there. Good
try though...
|
7/22/1999 8:11:00 AM: robb this program, more than likely, uses a
udp/tcp session. which will work on
LANs ONLY.
there is a better way
than filtering
the ip. use a udp
broadcast to
255.255.255.0
|
9/7/1999 7:24:00 PM: Capt_A kind of like a peer-to-peer network.
|
10/1/1999 9:59:00 AM: Franck I made a little modification to your
code that function was not working here
is a simplier way to do it
Public
Function getIPNumber(position As
Integer, IP As String) As Integer
Dim liste() As String
ReDim
liste(4)
liste = Split(IP, ".")
getIPNumber = Val(liste(position -
1))
End Function
|
4/4/2000 9:50:29 AM: TiST Good have been done better I suppose.
Pretty easy to do when you think about
it. I added a File Send/Receive
function and am working on a Voice Msg
- I am building up to my own ICQ-type
program
|
|
Add Your
Feedback! |
Note:Not only will your
feedback be posted, but an email will be sent to the
code's author.
NOTICE: The
author of this code has been kind enough to share it
with you. If you have a criticism, please state it
politely or it will be deleted.
For feedback not related to this particular
code, please click here.
|
|